|
|
Delibere
di Giunta» Dettaglio
Delibera
| -------------------------------------------------------------------------- |
|
<%
StartConnection()
Set rs = Server.CreateObject("ADODB.Recordset")
Set cmd = Server.CreateObject("ADODB.Command")
cmd.CommandText="select * from atticomunali where idatto = " & request("id") & " and idtipoattocomunale = 3"
Set cmd.ActiveConnection=MyConn
set rs=cmd.Execute
%>
| n.
<%=rs.fields("Numero")%> emesso
il <%=rs.fields("DataEmissioneAtto")%>
<% if rs.fields("DataUltimaModificaAtto") <> "" then response.write(", modificato il " & rs.fields("DataUltimaModificaAtto")) %>
|
| <%=addbr(rs.fields("OggettoAtto"))%>
|
| <%=addbr(rs.fields("NoteAtto"))%>
|
<% if rs.fields("LinkAtto") <> "" then %>
Allegato:
" target="_blank">
<%=rs.fields("LinkAtto")%>
<% end if %>
|
| -------------------------------------------------------------------------- |
| -------------------------------------------------------------------------- |
<%
rs.close
set rs=nothing
set cmd=nothing
StopConnection
%>
|
|
|
|
|